home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 16 / AMIGAplus Sonderheft 16 (1998)(ICP)(DE)[!].iso / pd / anwendungen / ispell-3.1.18src / version.c < prev    next >
C/C++ Source or Header  |  1995-09-21  |  5KB  |  140 lines

  1. /*
  2.  * Since the strings in this file are printed out when the "-v" switch is
  3.  * given to ispell, you may want to translate them into your native language.
  4.  * However, any translation of these strings MUST accurately preserve the
  5.  * legal rights under international law;  you may wish to consult a lawyer
  6.  * about this since you will be responsible for the results of any
  7.  * incorrect translation.
  8.  */
  9.  
  10. #ifdef AMIGA
  11. #include <string.h>
  12. extern char * Version_ID[];
  13. extern char RCS_Version_ID[];
  14. #endif
  15.  
  16. #ifdef AMIGA
  17. char * Version_ID[] = {
  18. #else
  19. static char * Version_ID[] = {
  20. #endif
  21.     "@(#) International Ispell Version 3.1.18 01/14/95",
  22.     "@(#) Copyright (c), 1983, by Pace Willisson",
  23.     "@(#) International version Copyright (c) 1987, 1988, 1990, 1991, 1992, 1993,",
  24.     "@(#) by Geoff Kuenning, Granada Hills, CA.  All rights reserved.",
  25.     "@(#)",
  26. #ifdef AMIGA
  27.     "@(#) Amiga Patch Level 3 (21.09.95) by Jesper Skov,",
  28.     "@(#) based on work by Loren J. Rittle.",
  29.     "@(#) Additional Amiga changes by Jörgen Grahn.",
  30.     "@(#)",
  31. #endif
  32.     "@(#) Redistribution and use in source and binary forms, with or without",
  33.     "@(#) modification, are permitted provided that the following conditions",
  34.     "@(#) are met:",
  35.     "@(#)",
  36.     "@(#) 1. Redistributions of source code must retain the above copyright",
  37.     "@(#)    notice, this list of conditions and the following disclaimer.",
  38.     "@(#) 2. Redistributions in binary form must reproduce the above",
  39.     "@(#)    copyright notice, this list of conditions and the following",
  40.     "@(#)    disclaimer in the documentation and/or other materials provided",
  41.     "@(#)    with the distribution.",
  42.     "@(#) 3. All modifications to the source code must be clearly marked as",
  43.     "@(#)    such.  Binary redistributions based on modified source code",
  44.     "@(#)    must be clearly marked as modified versions in the documentation",
  45.     "@(#)    and/or other materials provided with the distribution.",
  46.     "@(#) 4. All advertising materials mentioning features or use of this",
  47.     "@(#)    software must display the following acknowledgment:",
  48.     "@(#)      This product includes software developed by Geoff Kuenning and",
  49.     "@(#)      other unpaid contributors.",
  50.     "@(#) 5. The name of Geoff Kuenning may not be used to endorse or promote",
  51.     "@(#)    products derived from this software without specific prior",
  52.     "@(#)    written permission.",
  53.     "@(#)",
  54.     "@(#) THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING AND CONTRIBUTORS ``AS",
  55.     "@(#) IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT",
  56.     "@(#) LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS",
  57.     "@(#) FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL GEOFF",
  58.     "@(#) KUENNING OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,",
  59.     "@(#) INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES",
  60.     "@(#) (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR",
  61.     "@(#) SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)",
  62.     "@(#) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,",
  63.     "@(#) STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)",
  64.     "@(#) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED",
  65.     "@(#) OF THE POSSIBILITY OF SUCH DAMAGE.",
  66.     NULL
  67. };
  68.  
  69. #ifdef AMIGA
  70. char RCS_Version_ID[] =
  71. #else
  72. static char RCS_Version_ID[] =
  73. #endif
  74.     "$Id: version.h 1.42  1995/01/15  01:23:26  geoff Exp $";
  75.  
  76. /*
  77.  * $Log: version.h $
  78.  *
  79.  * Revision 1.42  1995/01/15  01:23:26  geoff
  80.  * Upgrade to patch level 18
  81.  *
  82.  * Revision 1.41  1995/01/15  01:14:30  geoff
  83.  * Upgrade to patch level 17
  84.  *
  85.  * Revision 1.40  1995/01/15  01:03:55  geoff
  86.  * Upgrade to patch level 16
  87.  *
  88.  * Revision 1.39  1995/01/15  01:01:01  geoff
  89.  * Upgrade to patch level 15
  90.  *
  91.  * Revision 1.38  1995/01/15  00:54:19  geoff
  92.  * Upgrade to patch level 14
  93.  *
  94.  * Revision 1.37  1994/11/21  07:03:01  geoff
  95.  * Update to patch level 13.
  96.  *
  97.  * Revision 1.36  1994/11/01  06:28:31  geoff
  98.  * Update to patch level 12
  99.  *
  100.  * Revision 1.35  1994/11/01  06:12:42  geoff
  101.  * Update to patch level 11
  102.  *
  103.  * Revision 1.34  1994/11/01  06:01:15  geoff
  104.  * Update to patch level 10
  105.  *
  106.  * Revision 1.33  1994/11/01  05:36:43  geoff
  107.  * Update to patch level 9
  108.  *
  109.  * Revision 1.32  1994/05/25  04:38:59  geoff
  110.  * Update to patch level 8
  111.  *
  112.  * Revision 1.31  1994/05/18  03:07:26  geoff
  113.  * Update to patch level 7
  114.  *
  115.  * Revision 1.30  1994/05/17  06:21:05  geoff
  116.  * Version update for ispell.el release
  117.  *
  118.  * Revision 1.29  1994/04/27  04:14:18  geoff
  119.  * Update to patch level 5
  120.  *
  121.  * Revision 1.28  1994/03/21  02:00:50  geoff
  122.  * Update to patch level 4
  123.  *
  124.  * Revision 1.27  1994/02/23  04:52:31  geoff
  125.  * Update to latest version.
  126.  *
  127.  * Revision 1.26  1994/02/08  05:59:20  geoff
  128.  * Update version
  129.  *
  130.  * Revision 1.25  1994/02/07  08:58:28  geoff
  131.  * Get rid of a comma that confuses patch
  132.  *
  133.  * Revision 1.24  1994/02/07  08:24:23  geoff
  134.  * Upate patch level
  135.  *
  136.  * Revision 1.23  1994/01/25  07:12:21  geoff
  137.  * Get rid of all old RCS log lines in preparation for the 3.1 release.
  138.  *
  139.  */
  140.